home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / pcmciautils.postrm < prev    next >
Text File  |  2007-10-23  |  336b  |  20 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. case $1 in
  5.     purge)
  6.         rm -f /etc/default/pcmciautils
  7.         rm -f /etc/pcmcia/config.opts /etc/pcmcia/config.opts~
  8.         rmdir /etc/pcmcia || true
  9.         ;;
  10. esac
  11.  
  12. # Automatically added by dh_installinit
  13. if [ "$1" = "purge" ] ; then
  14.     update-rc.d pcmciautils remove >/dev/null || exit $?
  15. fi
  16. # End automatically added section
  17.  
  18.  
  19. exit 0
  20.